在 HTML 中, Element
是一個元素。
在 JavaScript 中, Element
可以看作一個物件。
Example:
<!DOCTYPE html>
<html>
<head>
<title>JavaScript-Element</title>
</head>
<body>
<button class="btn">Click me</button>
<script>
const btn = document.querySelector('.btn');
btn.addEventListener('click', function(Element) {
console.log(Element);
});
</script>
</body>
</html>
點擊按鈕後的輸出結果:
PointerEvent {
isTrusted: true,
pointerId: 0,
width: 1,
height: 1,
pressure: 0,
…
}